home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2000 September / maximum-cd-2000-09.iso / Vampire the Masquerade / vampire_demo.exe / Codex.nob / RpgConversation.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-06-22  |  977 b   |  17 lines

  1. public class RpgConversation extends Codex {
  2.    private String _conversationName;
  3.    private String _fileName;
  4.    private int _flags;
  5.    public static String[] _params = new String[]{"Conversation name", "Filename", "Execution flags;0"};
  6.  
  7.    public RpgConversation(String conversationName, String fileName, int flags) {
  8.       this._conversationName = conversationName;
  9.       this._fileName = fileName;
  10.       this._flags = flags;
  11.    }
  12.  
  13.    public void clicked(int guid, int clickerGuid, int captureID) {
  14.       ((Codex)this).ExecuteConversation(clickerGuid, 0, this._conversationName, this._fileName, this._flags);
  15.    }
  16. }
  17.